MarkedNetReservedTypes

Those are the reserved type IDs that are found in every MarkNetData instance. Since a new instance of this enum is created, the reserved types are written snake-cased. Custom type members will have the exact same name as the type they intend to use.

connect: void send_connect(INetwork) disconnect: void send_disconnect(INetwork)

More...

Values

ValueMeaning
invalid
connect
@(NetBinding!(void, void))

Send that message so NetController can identify that a network connection was established.

disconnect
@(NetBinding!(void, void))

Send that message so NetController can identify that a network interface was disconnected

get_connected_clients
@(NetBinding!(void, ConnectedClientsResponse))

Sends a message to the server requesting for the available connection IDs

client_connect
@(NetBinding!(uint, ConnectToClientResponse))

The ID to connect to. Must be a valid ID received from get_connected_clients

Detailed Description

get connected clients

send_get_connected_clients(INetwork)

client connect

send_client_connect(INetwork, uint targetID)

Meta